home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_72_move around video = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  760 b   |  24 lines

  1. on mouseWithin
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "hand", the number of member "handmask"]
  3.   set the member of sprite 16 to "rolloversProgress"
  4. end
  5.  
  6. on mouseDown me
  7.   global gVideoDuration
  8.   set nowhowLoud to the soundLevel
  9.   set the soundLevel to 0
  10.   repeat while the stillDown
  11.     set the locH of sprite the currentSpriteNum to the mouseH
  12.     set plaice to float((the locH of sprite 25 - the left of sprite 23) * 1000 / the width of sprite 23) / 1000
  13.     set the mtime of sprite(7) to plaice * gVideoDuration
  14.     updateStage()
  15.   end repeat
  16.   set the soundLevel to nowhowLoud
  17.   set the mrate of sprite(7) to 1
  18. end
  19.  
  20. on mouseLeave
  21.   set the cursor of sprite the currentSpriteNum to 0
  22.   set the puppet of sprite 16 to 0
  23. end
  24.